projects
/
cargo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4bc0456
)
Fix syntax in build-script
author
Steve Klabnik
<steve@steveklabnik.com>
Thu, 3 Sep 2015 16:28:30 +0000
(12:28 -0400)
committer
Steve Klabnik
<steve@steveklabnik.com>
Thu, 3 Sep 2015 16:28:30 +0000
(12:28 -0400)
This has changed, apparently.
src/doc/build-script.md
patch
|
blob
|
history
diff --git
a/src/doc/build-script.md
b/src/doc/build-script.md
index c4b7ec875924d51e0157d687a9fcfefb830f9c93..8e28e26004fc755a888a80831769154558bbed87 100644
(file)
--- a/
src/doc/build-script.md
+++ b/
src/doc/build-script.md
@@
-329,7
+329,7
@@
portable, and standardized. For example, the build script could be written as:
extern crate gcc;
fn main() {
- gcc::compile_library("libhello.a", &["src/hello.c"])
.unwrap()
;
+ gcc::compile_library("libhello.a", &["src/hello.c"]);
}
```